home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Commodities / MoronCX / InstallMoronCX next >
Text File  |  1996-09-26  |  1KB  |  63 lines

  1. ;
  2. ;   MoronCX Installer
  3. ;   tom-01-02-96
  4. ;
  5.  
  6. (set installVersion "1.0")
  7.  
  8. (welcome " Welcome to the MoronCX " installVersion" Installation!")
  9.  
  10. ; Check Kick
  11. (if (< (/ (getversion) 65536) 37)
  12. (
  13.     (abort "Please upgrade your OS version")
  14. ))
  15.  
  16. ; Triton
  17. (set tritonVersion (getversion "libs:triton.library" ))
  18. (if (< tritonVersion 5)
  19.     (abort "Please install triton.library before installing MoronCX. "
  20.         " A script to install triton is provided with this distribution")
  21. )
  22.  
  23. ; Los gehts
  24.  
  25. (copyfiles
  26.     (prompt "Copying the executable")
  27.     (source "MoronCX")
  28.     (dest "sys:WBStartup")
  29.     (infos)
  30. )
  31.  
  32. ; ManDir
  33.  
  34. (set manDir
  35.     (askdir
  36.         (prompt "Where do you want me to put the dokumentation ?")
  37.         (help "Please select a location where I shall put the"
  38.             "amigaguide.\n"
  39.             "WBStartup is no good idea.")
  40.         (default "sys:")
  41.     )
  42. )
  43.  
  44. ; Copy
  45.  
  46. (copyfiles
  47.     (prompt "Copying the documentation")
  48.     (source "MoronCX.guide")
  49.     (help "Copying th docu")
  50.     (dest manDir)
  51.     (infos)
  52. )
  53.  
  54. ; Aus is
  55.  
  56. (message "Installation complete, please consult the MoronCX manual "
  57.     "should you experience any problems. Mail me for improvents "
  58.     "to MoronCX or the installer script or the documentation at "
  59.     "<t.eicher@amc.cube.net>\n\n"
  60.     "Please consider registering, since it is free.\n")
  61.  
  62.  
  63.